import { redirect } from 'next/navigation' interface PageProps { params: Promise<{ lng: string; id: string }> } export default async function Page({ params }: PageProps) { const { lng, id } = await params // 기본적으로 입찰 사전견적 페이지로 리다이렉트 redirect(`/${lng}/evcp/bid/${id}/pre-quote`) }